home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2000 February / DPPCPRO0200.ISO / ps10.dxr / Scripts_64_Intro new.ls < prev    next >
Encoding:
Text File  |  1999-10-26  |  531 b   |  25 lines

  1. property rolloverName
  2. global gVOPlaying
  3.  
  4. on mouseEnter me
  5.   set the member of sprite the currentSpriteNum to member(rolloverName & " roll")
  6. end
  7.  
  8. on mouseLeave me
  9.   set the member of sprite the currentSpriteNum to member(rolloverName)
  10. end
  11.  
  12. on mouseUp me
  13.   if baCpuInfo("speed") > 170 then
  14.     go("intro")
  15.   else
  16.     go("intro2")
  17.   end if
  18. end
  19.  
  20. on getPropertyDescriptionList
  21.   description = [:]
  22.   addProp(description, #rolloverName, [#default: EMPTY, #format: #string, #comment: "Rollover/Destination Name"])
  23.   return description
  24. end
  25.